ec74c8b934059ff3332c0051456c980e37486a76,zul/src/org/zkoss/zul/Listitem.java,Listitem,setLoaded,#boolean#,224

Before Change



			final Listbox listbox = getListbox();
			if (listbox != null && listbox.getModel() != null)
				if (listbox.inPagingMold() || !loaded)
					smartUpdate("z.loaded", _loaded);
				else if (loaded)
					invalidate();
					//reason: the client doesn't init (for better performance)
					//i.e., z.skipsib is specified for unloaded items
		}

After Change



			final Listbox listbox = getListbox();
			if (listbox != null && listbox.getModel() != null)
				if (_loaded && !listbox.inPagingMold())
					invalidate();
					//reason: the client doesn't init (for better performance)
					//i.e., z.skipsib is specified for unloaded items
				else